home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1691 / RESUME < prev    next >
Text File  |  1980-01-01  |  5KB  |  240 lines

  1. /*                            RESUME WRITING
  2.  
  3. This script creates a job resume, with a name at the top of the screen,
  4. followed by three job titles, and a sentence describing each job.*/
  5. /* -------------------------------------------------------------------
  6. This section describes the form */
  7.  
  8. resume:{
  9.  
  10.  
  11.                        $name
  12.  
  13. $job
  14.  
  15. $job
  16.  
  17. $job
  18.  
  19. }
  20. ;
  21.  
  22. /* -------------------------------------------------------------------
  23. This creates a name for the top of the page */
  24.  
  25. name:  {$first $middle $last};
  26.  
  27. first!u:  {Quentin} | {Marcia} | {Andrew} | {Josh} | {Bob} | {Silas} |      
  28.           {Hubert} | {Polly} | {Mary Sue Elizabeth} | {Babs} | {Jason} |    
  29.           {Jessica} | {Dillon} | {Jeffrey} | {Lindsey} | {Buffy} | {Marian}
  30.           | {Joe Bob} | {Spiro} | {Tom} | {Saddam} | {Randy} ;
  31.  
  32. middle!u: {E.} | {X.} | {S.} | {Q.} | {P.} | {J.} | {T.} ;
  33.  
  34. last!u:   {Johnson} | {Smyth-Jones} | {Doughi} | {Brown, Jr.} | {Quigley} |
  35.           {Banks, III} | {Carlson} | {Quayle} | {Nixon} | {Agnew} |
  36.           {Hussein} ;
  37.  
  38. job:
  39. {
  40.   $title.  $firm
  41.     $verb $noun $prep.}
  42.    ;
  43.  
  44. /* -------------------------------------------------------------------
  45. The job title */
  46.  
  47. title:  {$t1 $t2} ;
  48.  
  49. t1!u:  {Senior}
  50.    |{Marketing}
  51.    |{Product}
  52.    |{Extrusion}
  53.    |{Sanitation}
  54.    |{Marketing Communications}
  55.    |{Construction}
  56.    |{Customer Support}
  57.    |{Supervisor}
  58.    |{Order Entry}
  59.    |{Shipping}
  60.    |{Roofing}
  61.    |{Massage}
  62.    |{Human Resources}
  63.    |{Night}
  64.    |{Sales}
  65.    |{Accountant}
  66.    |{Account}
  67.    |{Gas}
  68.    |{Carpet}   
  69.    |{Journeyman}
  70.    |{Manufacturing}
  71.    |{Dental}
  72.    |{Fry}
  73.    |{Food Service}
  74.    |{Hair}
  75.    |{Legal}
  76.    |{Parking}
  77.    |{Mail}
  78.    ;
  79.  
  80. t2!u:  {Software Engineer}
  81.    |{Stylist}
  82.    |{Secretary}
  83.    |{Attendant}
  84.    |{Attendant}
  85.    |{Cleaner}
  86.    |{Cook}
  87.    |{Technologist}
  88.    |{Mechanic}
  89.    |{Assistant}
  90.    |{Plasterer}
  91.    |{Representative}
  92.    |{Superintendent}
  93.    |{Instructor}
  94.    |{Manager}
  95.    |{of Strategic Planning & Development}
  96.    |{Receptionist}
  97.    |{Analyst}
  98.    |{Assembler}
  99.    |{Technician}
  100.    |{Engineer}
  101.    |{Manager}
  102.    |{Trainee}
  103.    |{Specialist}
  104.    |{Clerk}
  105.    |{Clerk}
  106.    |{Watchman}
  107.    |{Secretary}
  108.    |{Administrator}
  109.    |{Executive}
  110.    |{Manager}
  111.    |{Therapist}
  112.    ;
  113.  
  114. /* -------------------------------------------------------------------
  115. A three word company name */
  116.  
  117. firm:  {$f1 $f2 $f3}
  118.    ;
  119.  
  120. f1!u:  {Photon}
  121.    |{International Business}
  122.    |{Pussycat}
  123.    |{Bob's}
  124.    |{Rub-a-dub}
  125.    |{General}
  126.    |{International}
  127.    |{Pussycat}
  128.    |{Specialty}
  129.    |{Laser}
  130.    |{Best}
  131.    |{Golden Crown}
  132.    |{International House of}  
  133.    |{Kopper}
  134.    |{Centennial}
  135.    |{American}
  136.    |{Northwest}
  137.    ;
  138.  
  139. f2!u:  {Controls}
  140.    |{Machines}
  141.    |{Transit}
  142.    |{Health Care Center}
  143.    |{Motel}
  144.    |{Kitchen}
  145.    |{Restaurant}
  146.    |{Burgers}
  147.    |{Car Wash}
  148.    |{Motors}
  149.    |{Harvester}
  150.    |{Systems}
  151.    |{Hotel}
  152.    |{Bed & Breakfast Inn}
  153.    |{Insurance}
  154.    |{Realty}
  155.    |{Trucking}
  156.    |{Engineering}
  157.    |{Diner}
  158.    |{Contractors}
  159.    |{Technology}
  160.    |{Services}
  161.    |{Val-u}
  162.    |{Tools}
  163.    |{Pancakes}
  164.    |{Tech}
  165.    ;
  166.  
  167. f3!u:  {Inc.}
  168.    |{Corp.}
  169.    |{Ltd.}
  170.    |{Co.}
  171.    ;
  172.  
  173. /* -------------------------------------------------------------------
  174. the verb beginning the sentence that describes the job */
  175.  
  176. verb!u:  {Managed}
  177.    |{Supervised}
  178.    |{Designed}
  179.    |{Assembled and tested}
  180.    |{Cleaned}
  181.    |{Handled}
  182.    |{Coordinated}
  183.    |{Fabricated}
  184.    |{Defined and implemented}
  185.    |{Delivered}
  186.    |{Administered}
  187.    |{Was responsible for}
  188.    ;
  189.  
  190. /* -------------------------------------------------------------------
  191. the noun in the middle of the sentence */
  192.  
  193. noun!u:  {staff}
  194.    |{project}
  195.    |{knowledge}
  196.    |{10-line switchboard}
  197.    |{40 man-year project}
  198.    |{breakfast shift}
  199.    |{complete customer satisfaction}
  200.    |{marketing research}
  201.    |{five units}
  202.    |{sheet metal}
  203.    |{new product development}
  204.    |{test instrumentation}
  205.    |{quality control}
  206.    |{sales channels}
  207.    |{major accounts}
  208.    |{truck}
  209.    |{stockroom}
  210.    |{cash register}
  211.    |{general ledger}
  212.    |{design engineering}
  213.    |{housekeeping}
  214.    |{bookkeeping}
  215.    |{purchasing}
  216.    ;
  217.  
  218. /* 
  219. -------------------------------------------------------------------
  220. the prepositional phrase completing the sentence */
  221.  
  222. prep!u:  {concerning nuclear power supplies}
  223.    |{for estimating and meeting schedules}
  224.    |{on time and under budget}
  225.    |{in cheerful, professional mannner}
  226.    |{of 20 mechanical engineers}
  227.    |{with menu ranging from waffles to grill}
  228.    |{reporting to management}
  229.    |{of 12 surly waitresses and busboys}
  230.    |{for 50 products}
  231.    |{with 4 pumps}
  232.    |{using MRP software system}
  233.    |{for busy orthodontic practice}
  234.    |{with hydraulics}
  235.    |{for licensed radiologist}
  236.    |{with good work habits, and clean, neat appearance}
  237.    |{including 10-key data entry}
  238.    |{operating small VAX cluster}
  239.    ;
  240.